type runtime.gcBits

13 uses

	runtime (current package)
		mgcmark_nogreenteagc.go#L27: func (s *mspan) moveInlineMarks(to *gcBits) {
		mheap.go#L494: 	allocBits  *gcBits
		mheap.go#L495: 	gcmarkBits *gcBits
		mheap.go#L496: 	pinnerBits *gcBits // bitmap for pinned objects; accessed atomically
		mheap.go#L2863: type gcBits struct {
		mheap.go#L2869: func (b *gcBits) bytep(n uintptr) *uint8 {
		mheap.go#L2875: func (b *gcBits) bitp(n uintptr) (bytep *uint8, mask uint8) {
		mheap.go#L2892: 	bits [gcBitsChunkBytes - gcBitsHeaderBytes]gcBits
		mheap.go#L2905: func (b *gcBitsArena) tryAlloc(bytes uintptr) *gcBits {
		mheap.go#L2921: func newMarkBits(nelems uintptr) *gcBits {
		mheap.go#L2977: func newAllocBits(nelems uintptr) *gcBits {
		pinner.go#L258: type pinnerBits gcBits
		pinner.go#L265: 	bytep, mask := (*gcBits)(p).bitp(n * 2)